文章

How To Used Git

1.使用git bash创建一个文件夹

1
2
3
 cd g:
 cd GitLearning
 mkdir LearningPythonDiary

2.初始化代码仓库

1
 git init

3.添加一个文件到仓库的缓存区(从工作目录添加到缓存区)

1
 git add filename

4.将添加的文件从缓存区提交到HEAD(最近一次提交后的结果)

1
 git commit -m "代码提交信息"  

5.将本地代码仓库中代码push到gitHub上

  • 首先需要用我们在gitHub上的邮箱与用户名生成一个.ssh(id_rsa.pub)

    1
    2
    3
    4
    5
    
     git config --global user.name "Your Name Here"  
     # Sets the default name for git to use when you commit   
       
     git config --global user.email "your_email@example.com"   
     # Sets the default email for git to use when you commit   
    

然后将生成的id_rsa.pub 中最后== 添加上自己在gitHub上的邮箱地址,全选一起拷贝到在gitHub上同样项目的 domay key中。

  • 然后在git中创建主干线(ssh方式)

    1
    
     git remote add origin git@github.com:username/LearningPythonDiary.git  
    

    也可以这样创建(https方式):

    1
    
     git remote add origin https://github.com/username/LearningPythonDiary.git 
    

    不过这样创建就是每次提交的时候都要输入用户名与密码,比较繁琐。

  • push到github中的同名项目中

    1
    
     git push origin master  
    

6.将gitHub上的代码更新到本地

1
 git pull origin master	   

7.从gitHub上复制项目到本地localhost

1
 git clone https://github.com/username/LearningPythonDiary.git master         _*转自https://github.com/peterluo/LearningPythonDiary*_
本文由作者按照 CC BY 4.0 进行授权