本文共 1408 字,大约阅读时间需要 4 分钟。
git config --global user.name "John Doe"git config --global user.email "johndoe@example.com"
这些用户信息存储在home/user下面,是个隐藏文件,需要用命令
ls -a
才能看到,是./gitconfig文件,在这里可以看到上面--global的配置数据。
git config --global core.editor emacs
git config --list //列出所有项目git config user.name //列出特定项目
git help config
git init //进入需要进行版本项目的文件夹再运行命令
git add filename
git clone https://github.com/notepad-plus-plus/notepad-plus-plus.git
git status
忽略的文件记录在.gitignore文件中,是一个隐藏文件。
git diff
git diff --staged
git commitgit commit -m "redpig:mark my words"//提交信息放在命令行git commit -a//跳过缓冲区直接提交
git rmgit rm -f filename//从缓冲区强制删除,同时删除文件git rm --cached filename//从缓冲区删除,不删除文件
git mv filename1 filename2
git log
ssh-keygen -t rsa -C "test@hotmail.com"Generating public/private rsa key pair.Enter file in which to save the key (/c/Users/test/.ssh/id_rsa): /c/Users/test/.ssh/id_rsa_githubCreated directory '/c/Users/test/.ssh'.Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in /c/Users/test/.ssh/id_rsa_github.Your public key has been saved in /c/Users/test/.ssh/id_rsa_github.pub.
转载地址:http://uxyqa.baihongyu.com/