备不需:简单git用法

基本安装与使用

pacman -S openssh
ssh-keygen -t rsa -b 4096 -C "[email protected]"

Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]

Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]

ssh-agent -s
ssh-add ~/.ssh/id_rsa
clip < ~/.ssh/id_rsa.pub
* 将该key添加到git账户去 *

pacman -S git
git config --global user.name "李毅"    
git config --global user.email "[email protected]"
	(vim .gitconfig)

mkdir path/repo
cd path/repo
touch README.md

git init
git add README.md
git commit -t "touch README.md"

git remote add origin [email protected]:woodenji/the-abc-of-c.git
git push -u origin master

git pull origin master

git clone [email protected]:woodenji/the-abc-of-c.git
(generate a the-abc-of-c directory)

rm file
git rm file
git commit -m "rm file"
git push origin master

.gitignore 设置屏蔽目录

bin/

关于Git

教程可看 使用教程ProGit,下面要说的是两点要注意的问题。

第一,提交过程。先pull一下看其它人有没有什么更新,然后commit到本地仓库,最后push to upstream推送到服务器,注意看一下到底有没有推送成功,如果不成功就用remote->push

第二,关于提交时的注释。第一行写概要,第二行空着,第三行写详细内容,不写详细内容的话只保留第一行。作者和提交者写的是你在OSChina上的账号。
提交


你可能感兴趣的:(git)