Create a Shared Repository

来源:互联网 发布:软件手术刀 2017 编辑:程序博客网 时间:2024/05/16 06:59

Step 1:

git init  //to generate the .git directory.


Step 2: Create the README file

touch README

git add README

git commit -m 'first commit'


Step 3:Push you rcommit

git remote add origin https://github.com/username/Hello-World.git

git push origin master

原创粉丝点击