Command line instructions
You can also upload existing files from your computer using the instructions below.
Git global setup
git config --global user.name "rh" git config --global user.email "rh@xx.cn"
Create a new repository
git clone http://git.xx.cn/rh/kk-oa.git cd kk-oa touch README.md git add README.md git commit -m "add README" git push -u origin master
Push an existing folder
cd existing_folder git init git remote add origin http://git.xx.cn/rh/kk-oa.git git add . git commit -m "Initial commit" git push -u origin master
Push an existing Git repository
cd existing_repo git remote rename origin old-origin git remote add origin http://git.keking.cn/rh/kk-oa.git git push -u origin --all git push -u origin --tags
本文详细介绍了如何使用Git进行一系列操作,包括全局配置、创建新仓库、推送现有文件夹和Git仓库到远程服务器。通过具体指令示范,帮助读者掌握从初始化到推送的完整流程。
3万+

被折叠的 条评论
为什么被折叠?



