git配置记录

1647  git clone ssh://[email protected]:29418/t_xiaomi.git
 1648  git config user.email 
 1649  cd t_xiaomi
 1650  ls
 1651  git config user.email 
 1652  git config user.name yanghuolong
 1653  git config user.name yanghuolong --global
 1654  git config user.email [email protected] --global
 1655  git config user.email 
 1656  git config user.name 
 1657  git config list
 1658  git config --list
 1659  vim .git/config 
 1660  git config --list
 1661  git --help
 1662  git --help config
 1663  git config --global user.name yanghuolong
 1664  git config --global user.email [email protected]
 1665  git config --list

 1666  git status




ssh-keygen:

tangxudeMacBookPro:~ yanghuolong$ sudo chown -R yanghuolong:staff .ssh
tangxudeMacBookPro:~ yanghuolong$ ssh-keygen -t rsa -b 2048 -C "yanghuolong"

你可能感兴趣的:(git配置记录)