Browsed by标签: git

怎样把一个新项目/本地项目提交到github?

怎样把一个新项目/本地项目提交到github?

怎样把一个项目提交到github?
– 添加所有新创建或修改过的文件:git add .
– 添加少数的一个两个文件(空格隔开):git add file1 file2
– 提交所有用`git add`添加过的文件:git commit -a -m “this is a test”
– 提交指定的少数文件:git commit -i file1 file2 -m “this is a test”
– 从github更新:git pull
– 推送到github:git push

Read More Read More

扫码在手机查看
iPhone请用自带相机扫
安卓用UC/QQ浏览器扫

怎样把一个新项目/本地项目提交到github?