当前位置: 首页 > 工具软件 > objective-git > 使用案例 >

To create a simple git project.

有宏邈
2023-12-01

Server:

cd $YOUR_GIT_DIR

git init --bare init $YOUR_PROJECT


Client:

git clone $USER@SERVER_IP:/git/$YOUR_PROJECT

cd $YOUR_PROJECT

git init

cp $YOUR_SRC_CODE . -avR > /dev/null

git commit -m 'initial  commit'

git remote add origin $USER@SERVER_IP:/git/$YOUR_PROJECT

git push origin master


 类似资料:

相关阅读

相关文章

相关问答