首先,我们需要安装Git。在终端中运行以下命令:
sudo apt-get update
sudo apt-get install git
接下来,您需要配置Git用户名和邮箱。运行以下命令:
git config --global user.name "Your Name"
git config --global user.email "your-email@example.com"
如果您想将Git与GitHub关联,则需要创建SSH密钥并将GitHub添加到SSH密钥中。运行以下命令:
ssh-keygen -t rsa -b 4096 -C "your-email@example.com"
ssh-add ~/.ssh/id_rsa
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
最后,您可以在终端中运行以下命令,将您的项目推送到GitHub上:
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/your-username/your-repository.git
git push -u origin master
以上是安装和使用Ubuntu中的Git的全部过程。
领取专属 10元无门槛券
手把手带您无忧上云