打开 Git Bash,开始键入各种配置信息:
git config --global user.name "You Name" git config --global user.email [email protected]
在本地创建项目文件,在 Bash 下键入一下代码:
mkdir test cd test git init touch README git add README git commit -m ‘first commit‘ git remote add origin [email protected]:youusername/test.git git push -u origin master
时间: 2024-10-14 05:32:53