-
Notifications
You must be signed in to change notification settings - Fork 0
/
git_learning.txt
56 lines (39 loc) · 1.48 KB
/
git_learning.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
使用key,以后防止输入账号和密码:
ssh-keygen -t rsa -C "youremail@example.com"
第二步:从github上下载
git clone "***"
第三步:
本地初始化:git init
第四步:把文件添加到暂存区
git add .:所有的修改
git add "***":你更改的文件夹
第五步:提交到本地仓库
git commit -m "----"
第六步:将本地仓库和远程github进行关联
git remote add origin https://github.com/longxiaomi/learning.git
第七步:将本地项目推送到远程仓库:
git push -u origin main
<<<<<<< HEAD
git status:查看状态
2 管理分支
创建分支使用下面的命令:
git branch "新分支名称":比如 git branch feature
git branch 查看当前分支
git push origin feature:将新创建的本地分支推到远程GitHub的仓库
合并到master分支,先切换到master分支以后,在使用merge命名合并到master分支:
git checkout master
git merge feature
git push
git使用commit命令后显示Author identity unknown的解决方法
在git命令行中重新输入命令:
先输入:$ git config --global user.name “你的名字”
回车后,
再输入:$ git config --global user.email “你的邮箱地址”
git chechout "分支名称"
=======
查看状态
git status
在github上已经更改东西了,本地更改之后push不上去:
https://blog.csdn.net/KaiSarH/article/details/102996400
https://blog.csdn.net/weixin_43290229/article/details/86410263
>>>>>>> 7fee5476a64ef0f3561a1cb296fdffc8d4cb61a8