Git命令
摘要:1、初始化,该命令将创建一个名为 .git 的子目录,这个子目录含有你初始化的 Git 仓库中所有的必须文件,这些文件是 Git 仓库的骨干。 git init 2、克隆现有的仓库 git clone https://github.com/libgit2/libgit2 3、检查当前文件状态 git
阅读全文
posted @
2020-06-28 14:04
Jason_c
阅读(175)
推荐(0)
TortoiseGit 弹出 git@xxx.com's password 对话框
摘要:安装完 tortoise git,用它克隆项目的时候,一直弹出git@xxx.com's password 对话框 解决的办法是,将ssh客户端默认的路径,换为git 安装目录下ssh.exe的路径就行了。 安装后的默认路径: 换为 git 安装目录下的 \user\bin\ssh.exe
阅读全文
posted @
2018-07-09 17:15
Jason_c
阅读(1892)
推荐(0)
Git 服务器更换了IP的解决方法
摘要:1、找到项目根目录中的.git文件夹 2、.git文件夹里有一个config文件 3、用记事本打开后,修改为服务器的新ip就行了。
阅读全文
posted @
2017-08-18 10:19
Jason_c
阅读(3800)
推荐(0)
unity gitignore
摘要:/[Ll]ibrary/ /[Tt]emp/ /[Oo]bj/ /[Bb]uild/ /[Bb]uilds/ /Assets/AssetStoreTools* # Autogenerated VS/MD/Consulo solution and project files ExportedObj/ .consulo/ *.csproj *.unityproj *.sln *.suo *.tmp...
阅读全文
posted @
2017-07-26 17:03
Jason_c
阅读(698)
推荐(0)