平时经常有使用github或者gitee,本篇笔记收录了git的一些常用命令,对于日常使用来说足够了,后面再有其他的会慢慢补充…
Git常用命令
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
git init #初始化
git add . #添加所有
git commit -m "first commit" #提交 并添加注释
git remote add origin https://github.com/JinYiGao/Geological-hazard-weapon #远程连接到仓库
git push -u origin master #push到仓库
git pull
# 若要提交到分支 则
# git push -u origin 分支名
git branch #查看当前分支
git branch 分支名 #创建新分支
git checkout -b 分支名 #(你自己创建的分支名 若无 则创建新分支)
git checkout 分支名 #切换分支
git branch -D tmp #删除本地分支
git branch -r #查看远程分支
git push origin --delete master #删除Github项目上的master分支
git rm -r --cached "文件路径" #不删除物理文件,仅将该文件从缓存中删除;
git rm -r --f "文件路径" #不仅将该文件从缓存中删除,还会将物理文件删除
|