Git之常用的命令
例:用户名 xmf 项目名 demo
克隆Git项目到本地 git clong http://github.com/xmf/demo.git
初始化生成.git文件夹 git init
跟踪修改的文件 git add * // "*"表示跟踪所有的文件
提交已被跟踪的文件 git commit -m "demo.txt已被提交"
创建分支 git branch xxx //xxx表示分支名
切换分支 git checkout xxx //xxx表示分支名
与远程分支相关联 git remote add origin https://github.com/***/xxx.git //关联之后提示:fatal:remote origin already exists 可使用 git remote rm origin 再次提交
分支上传 git push origin xxx
修改文件或文件夹名 git mv -f 文件名/文件夹名
添加追踪 git add -u 新文件/文件夹名
生成sshkey ssh-keygen -t rsa -c "邮箱"按三次回车可生成ssh