GitGit工具常用命令

Posted andre-ma

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitGit工具常用命令相关的知识,希望对你有一定的参考价值。

GitHub使用指南

 

 

.把本地代码上传到GitHub

0. 提前配置好上传地址

git config --global user.name “username”】

git config --global user.email “your email”】

 

【查看用户名和邮箱】

$ git config user.name

$ git config user.email

 

1.在需要上传的根目录下初始化仓库 

cd  待上传目录】

【git init】 #  当后来再同步到github时,不需要本行命令

 

 

2.把当前目录中的所有文件加入

【git add .】

 

3.提交到仓库

git commit -m “dicription of this code..”】

 

4.上传到GitHub

git remote add origin https://github.com/maruitao/dw2-workspace.git   #不是每次备份都必须找个命令

注意此步骤只是和https://github.com/maruitao/dw2-workspace.git 链接上,代码并没有推送

 

5.推送代码

git push -u origin master

 

6.下载代码

cd  $HOME

git clone https:github.com/mrt..

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

以上是关于GitGit工具常用命令的主要内容,如果未能解决你的问题,请参考以下文章

gitgit常用命令

GitGit使用--常用命令

GitGit常用命令合集

Gitgit使用 - 各种常用场景命令解决

Gitgit常用命令集合

Gitgit常用命令集合