标签:
1.安装好git.
2.创建一个版本库
mkdir test
2.版本库初始化
cd test/
git init
3.把项目加入到git中
git add -A //标示所有的项目
4.提交
git commit -m ‘test‘
5.上传到github
git push origin master
//成功的话出现
Counting objects: 633, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (615/615), done.
Writing objects: 100% (633/633), 44.45 MiB | 4.00 KiB/s, done.
Total 633 (delta 161), reused 0 (delta 0)
To https://github.com/name/polyguideoa.git
! [remote rejected] master -> master (cannot lock ref ‘refs/heads/master‘: ref refs/heads/master is at 4cc59104fa77bbcad93bbe902f4dc2198cfc23fc but expected 1994f432668c7cb0b1cf7bdf50145456a98c17c5)
到这的话基本就算提交成功了。
不过前提是。
1.先在github 新建一个repository 命名为test
2.git clone 这个https地址
3.然后你的本地会出现一个test文件
4.进入
cd test/
5.git add -A 上传全部
6.git commit -m ‘test‘
7.git push origin master
我暂时就这么用的
标签:
原文地址:http://www.cnblogs.com/g825482785/p/git.html