Home >Operation and Maintenance >Linux Operation and Maintenance >How to install and use gitee on Windows and Linux
Visit Git official website: https://git-scm.com /, download the installer running on Windows platform. Double-click the downloaded installer and install according to the default settings.
First you need to create your own warehouse on Gitee. The specific operations are as follows:
Use a browser to open the Gitee homepage: https://gitee.com/
Log in to your Gitee account. If you don’t have one, you can register a new account first;
In the navigation bar above the Gitee homepage, select "New Warehouse";
Enter your warehouse name and choose whether to enable Wiki and Issue options;
Confirm the submission, then find "SSH Clone Address" on the right and copy the address.
After completing the above operations, you need to use Git Bash to configure local Git and establish a connection with Gitee , the specific steps are as follows:
Use Git Bash to open your working directory;
Initialize the Git local warehouse: git init
;
Establish a connection between the local warehouse and Gitee:
<code>$ git remote add origin git@gitee.com:[你的用户名]/[仓库名].git </code>
Among them, [your Username] and [Warehouse Name] are changed to your Gitee username and the name of the new warehouse respectively.
Use the following command to synchronize the local repository with the remote repository:
<code>$ git pull origin master </code>
$ sudo apt-get update $ sudo apt-get install gitThe installation of Git is completed. Of course, if you are using other Linux distributions, the installation steps are generally the same. Create your own warehouse on Gitee and copy the addressSimilarly, the first step to use Gitee under the Linux platform is to create your own warehouse on Gitee and copy the address. The operation method is the same as Windows It is the same under the platform and will not be described again. Configuring Git and establishing a connection with GiteeAlso on the Linux platform, you can also use the command line to configure Git and establish a connection with Gitee. The specific steps are as follows:
$ cd [你的工作目录]
$ git init
<code>$ git remote add origin git@gitee.com:[你的用户名]/[仓库名].git </code>
<code>$ git pull origin master </code>
Part 3: Using Gitee
The above is the detailed content of How to install and use gitee on Windows and Linux. For more information, please follow other related articles on the PHP Chinese website!