Githup 简单使用

Upload the file into repository


本地创建文件夹github: cd c:\github\

Copy Github Reposity 项目到本地: git clone https://github.com/sdscls/java.git

进入项目目录java, 并在java目录下创建一些新文件: cd c:\github\java

做一下操作: 

git add . 

git commit - m "change log"

git push -u origin master


After that you will see the update on your repository. 


更新 Github repositoy: git pull

删除文件:git rm fileName

修改文件名:git mv fileName1 fileName2


更新之后,需要继续update操作




你可能感兴趣的:(github,upload)