📜  git 语法 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:02.700000             🧑  作者: Mango

代码示例2
#Initialize Repo
cd my_awesome_project
git init
#NOTE:you need to setup your global (--global) or project user
git config --global user.name POG
git config --global user.email POG@gmail.com
#Create a README.md and .gitignore file then stage all changes
git add .
#Commit them
git commit -m "Create REAME and gitignore"