github的网页链接 https://github.com/zhangji123/test
学习总结
通过学习使用github软件使我掌握了其使用方法及其独特之处
1、github的网址: https://github.com
2、选择login,输入用户名,密码,登陆。登陆之后,就会进入到主页,这里包含了四个基本的应用:
· Set Up Git
· Create A Repository
· Fork a Repository
· Be Social
3、Set Up a git
1、配置用户名和邮箱。
git config --global user.name "Your Name Here"
git config --global user.email "your_email@youremail.com"
4、Create a Repository
在网页中查收到 Create repository的网页绿色按钮后,输入必要的项目名称后,点击,即可完成创建repository的过程。
mkdir ~/Hello-World
cd ~/Hello-World
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/username/Hello-World.git
git push origin master
5、Fork a Repo
虽然学习过程中遇到各种问题,通过团组学习的相互交流与沟通,都克服了困难。