github的使用

1.在本地先择一个目录

git init

2. 然后选择要添加到版本控制的文件

git add *

3. 提交到本地git版本控制

git commit -m "<添加你的日志>"

4. 在github上创建对应的仓库

5. 先在本地与git hub上的仓库同步

git pull <github上的创建路径> <分支>

如:git pull [email protected]:huangxiaobo/workspace.git master

6. 然后将本地上传到github仓库中支

git push ...

其余的问题:

http://rogerdudler.github.io/git-guide/index.zh.html

https://help.github.com/articles/generating-ssh-keys

http://blog.csdn.net/jiangsq12345/article/details/6187144

你可能感兴趣的:(github的使用)