远路git的使用

远程git的使用1.仓库的建立mkdir testcd testgit init?2.下载代码git clone@192.168.10.99:ipeijian_data.

远程git的使用

1.仓库的建立
mkdir test
cd test

git init?远路git的使用

2.下载代码

git clone@192.168.10.99:ipeijian_data.git?远路git的使用

3.修改代码
......
4.将修改后的代码更新到远程git库
cd ipeijian_data ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? (注意:注意住)
git add .?
git commit -a -m "some message"
git pull

git push?远路git的使用