Quick setup — if you’ve done this kind of thing before or
https://github.com/15751064254/IMF.git
echo "# IMF" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/15751064254/IMF.git git push -u origin master …or push an existing repository from the command line
git remote add origin https://github.com/15751064254/IMF.git git push -u origin master …or import code from another repository You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
ProTip! Use the URL for this page when adding GitHub as a remote.
$ git config --global user.name "github's Name" $ git config --global user.email "[email protected]" $ git config --list
$ git config user.name "gitlab's Name" $ git config user.email "[email protected]" $ git config --list $ git config --list 查看当前配置, 在当前项目下面查看的配置是全局配置+当前项目的配置, 使用的时候会优先使用当前项目的配置