标签:git init git pull AC comm 快速 init 学习 添加文件 服务器
git init //创建新的 git 仓库
git clone /path/to/repository
git clone username@host:/path/to/repository
3.工作流
git add <filename> //添加某一个 git add * //添加全部
git commit -m "代码提交信息"
git push origin master
git remote add origin <server>
6.分支
git checkout -b feature_x 切换回主分支: git checkout master 再把新建的分支删掉: git branch -d feature_x 除非你将分支推送到远端仓库,不然该分支就是 不为他人所见的: git push origin <branch>
git checkout master
git branch -d feature_x
git push origin <branch>
git pull
git merge <branch>
git add <filename>
git diff <source_branch> <target_branch>
8.标签
git tag 1.0.0 1b2e1d63ff
git log
git checkout -- <filename>
git fetch origin
git reset --hard origin/master
gitk
git config color.ui true
git config format.pretty oneline
git add -i
标签:git init git pull AC comm 快速 init 学习 添加文件 服务器
原文地址:https://www.cnblogs.com/qingshandaiyue/p/9026161.html