Git is integrated in vscode, and many operations can be performed with just a click, without having to write some git commands. But this requires you to configure vscode. Next I will talk about git configuration and password-free uploading to github. 1. Install the Git management tool. You can install it on the official website. The installation path is https://git-scm.com/. The default installation path is C:\Program Files\Git. You can modify it yourself. Here I installed it in D:\Program Files\Git. 2. After installing Git, configure the environment variable path information as shown in the figure. It will usually be automatically configured successfully. After the configuration is completed, you can use Git on your computer. 3. To use Git in VS Code, you need to configure git.path in the editor Configuration steps: In the editor's file->preferences->settings->search for git.path->click edit->find the installation directory of git on your computer, find the bin folder inside, and copy the full path of the git.exe file inside 4. Use of Git in VSCode and password-free upload of Github First, set the global variables. The following command can be entered directly in the git-bash terminal. After success, a .gitconfig configuration file will be generated under your computer user directory, which contains your username and password. Git global settings: git config --global user.name "username" git config --global user.email "User mailbox" Here, I set the terminal to git-bash terminal for convenience. The following is the tutorial Or search for the following fields in the default user settings terminal.integrated.shell.windows Then copy the bash.exe file directory in the bin folder under the installation directory and update it to the user settings as shown in the figure After setting, you can use the shortcut key Ctrl+~ to open the terminal The next step is to upload the code to GitHub Before uploading, create a library on GitHub, that is, the file library of the project as shown in the figure After the creation is complete, enter vscode, open the terminal and enter the root directory of the project to be uploaded Then execute the git initialization warehouse command Execute the command Execute the command Execute the command to connect the git repository to the github repository Execute the command When you click Push for the first time or execute the previous push command, a GitHub login box will pop up. Enter your username and password (you must enter your username and password every time you push in vscode. You can execute the git command here to let the git software remember your password) as follows git config --global credential.helper store After executing here, you can go to GitHub to view the newly created GitHub repository. Click it and your project will be there. Success Because vscode integrates git, some buttons of vscode can replace the git commands entered above, as shown in the figure: The following figure is recommended for use when you update the code. For the first time, I recommend using git commands throughout the process. The steps to download the code from GitHub to your computer are as follows: Since I have integrated the git-bash terminal on vscode before, you can directly open the editor here, open the folder you want to store, press ctrl+~ to open the terminal, and enter the command directly git clone http://github.com/username/the name of the project you want to clone on github Wait for the download to complete and the code will be on your computer. If there is no integrated terminal, open the git-bash terminal, enter the command to enter the address you want to store (cd folder name), and then execute the above clone command again. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of node.js installation and HbuilderX configuration
>>: win10 mysql 5.6.35 winx64 free installation version configuration tutorial
Remark: The amount of data in this article is 1 m...
About semantics Semantics is the study of the rel...
Problem Description After installing the plugin E...
Recommended Docker learning materials: https://ww...
First method : CSS code: Copy code The code is as ...
Problem background: There is a requirement to tak...
The react version when writing this article is 16...
1. Basic Environment 1. Operating system: CentOS ...
MySQL is a relational database management system ...
1. Business Scenario I have been doing developmen...
Table of contents 1. Resource files 2. Installati...
I have been quite free recently. I have been doin...
Download and install. First check whether there i...
Linux often encounters situations such as adding ...
After setting up the MySQL master-slave, you ofte...