Git Source Code Version Management


Git 是源代码版本管理工具。

从 Git 存储库下载源代码

git clone --recursive http://user_name@192.168.1.50:1010/test.git
 
git switch -c <new-branch-name>
					

设置登录用户名、登录地址

git config --global user.name "user_name"
 
git config --global user.email "user_name@192.168.1.50:1010"
 
git init
					

See also:

Copyright Notice: This article is exclusive original manuscripts, copyrighted by Happy Digits Software , shall not be reproduced without permission.