git初试

来源:互联网 发布:交水电费的软件 编辑:程序博客网 时间:2024/05/03 18:25

git 公钥密钥
Git SSH Key 生成步骤

git的使用
git 命令
记得建立链接:
git remote add origin https://github.com/tutorialzine/awesome-project.git
这样你才能提交代码到服务器上。

git的参考
git相关知识

git

另:
1.git pull
上述命令其实相当于git fetch 和 git merge
2.gitk –all
使用 Gitk 跟踪 Git 项目源代码

git中文

流程:
git add .

git commit -m”XXXXXXX”

git fetch

git rebase

git push

2017年2月5日17:45:16
新增:用法
用法详解
廖雪峰的讲解

0 0