Git memo

Posted humz

tags:

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

技术分享图片

1. Installation

$ git config --global user.name "yourname"
$ git config --global user.email "youremail"
$ ssh-keygen -t rsa -C "youremail"

2. Local repository

$ git init

3. Submit

$ git add filename
$ git commit -m "description"

4. Operations

$ git status
$ git rm filename
$ git push origin master
$ git pull

5. Remote repository

$ git remote add origin [email protected]:accountname/reponame.git
$ git push -u origin master
$ git clone [email protected]:accountname/reponame.git

以上是关于Git memo的主要内容,如果未能解决你的问题,请参考以下文章

text gitいろいろ#memo #git

text git変更点列挙#memo #git

text git-svn操作#memo #git #svn

text git-commitのチェック#memo #git

Git memo

text gitで裸リポジトリを同期#memo #git