git命令
一、常用操作
1、切换分支:git checkout name
2、撤销修改:git checkout – file
3、删除文件:git rm file
4、查看状态:git status
5、添加记录:git add file 或 git add .
6、提交添加描述:git commit -m “miao shu nei rong”
7、同步数据:git pull
8、提交数据:git push origin name
9、关联远程仓库:git remote add origin
10、添加忽略文件(idea):
(1)git rm -r --cached .idea
(2).gitignore中添加.idea
二、分支操作
1、查看分支:git branch
2、创建分支:git branch name
3、切换分支:git checkout name
4、创建+切换分支:git checkout -b name
5、合并某分支到当前分支:git merge name
6、删除分支:git branch -d name
7、拉取线上分支到本地:
(1)查看所有线上分支:git branch -r
(2)拉取并创建本地分支:git checkout -b 本地分支名x origin/远程分支名x
三、出现错误的解决办法
1、错误提示:fatal:remote origin already exists(意思是路径存在了,就需要删除原来的路径从新添加)
a.先输入 git remote rm origin
b.再输入 git remote add origin https://gitee.com/*/Git-Gitee.git 就不会报错了
2、错误提示:Auto Merge Failed; Fix Conflicts and Then Commit the Result(更新文件的文件冲突)
a.查看冲突文件:git status
b.丢弃本地修改:git reset --hard origin/master
c.重新拉取:git pull