Paramètres globaux
git config --global user.name "zyl" git config --global user.email xxx@xxx.com git config --list 检查你的git设置 git clone xxxxxx.git
Ajouter un nouveau fichier
vim demo.txt git add demo.txt 添加新的文件 git commit -m 'this is first commit' 提交到本地仓库,并且设置注释 git push 将推送这一转变为主分支 git rm xxx.txt 删除文件 git commit -m 'xxxx'; 提交到仓库 git push git pull 拉取文件 git log -all 日志 git branch 查看所有分支 git log --stat xxx 查看 某个支点的提交信息 find .git/objects -type f 查看所有分支
Commande liée au Cloud Alibaba :
Commande de ligne de commande
Paramètres globaux Git
git config --global user.name "z1577121881" git config --global user.email "1577121881@qq.com"
Créer un nouveau référentiel
git clone git@code.aliyun.com:z1577121881/tantou.git cd tantou touch README.md git add README.md git commit -m "add README" git push -u origin master
Dossier existant ou référentiel Git
cd existing_folder git init git remote add origin git@code.aliyun.com:z1577121881/tantou.git git add . git commit -am "你需要填写的一些信息" git push -u origin master
Commandes liées au cloud de code
Définir les informations globales
git config --global user.name "你的名字" git config --global user.email "你的Email" clone 和push git clone http://xxxx/xxxx.git
Créer une branche de fonctionnalité
git checkout -b $feature_name
Soumettre le code
git commit -am "this is commit "
Pousser vers le branche spécifiée
git push origin $feature_name
Pour plus de commodité, il est préférable d'ajouter la clé publique à git.
Vous pouvez la générer via la commande suivante
ssh-keygen -t rsa -C "xxxxx@xxxxx.com"# Creates a new ssh key using the provided email # Generating public/private rsa key pair...
Afficher la clé publique
cat ~/.ssh/id_rsa.pub # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
Après l'ajout, saisissez
ssh -T git@git.oschina.net
dans le terminal Si vous revenez à Bienvenue sur Git@OSC, votre nom !
Cet article provient du tutoriel git colonne, bienvenue pour apprendre !
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!