Author: 👦Albert 📧 15221024927@163.com, C/C++ software engineer.
👧Elena 📧 huimin0099@163.com, Electronic communication engineer
Let's speak English.
- Chapter_1 《speak English》
- Chapter_2 《roots and affixes》
- Chapter_3 《Processon Online》
- Chapter_4 《Grammar Online》
Some software you might use
Step 1: GIt configuration
copy help document/Git/.gitconfig
file to your home folder, like C:/Users/gzyit
. This configuration file contains your identity and email address, as well as the configuration of some other functions. All Git clients will automatically search for this configuration file on your system. If the file is not found, they generate a new configuration file, which is not expected.
Don't forget to change your name and email address to your own.
Step 2: ssh configuration
If you don't want to manually enter the account name and password every time you submit a code, you're better off generating an SSH key pair locally.
open git-shell
$ ssh-keygen
Running this command on a terminal will generate a .ssh directory with a pair of passwords in your user directory. The pub is the public key, and the other private key should be protected. Then copy the public key into your GitHub SSH manager.
Step 3: Git commit format
In order to quickly see what was committed, we agreed to write the commit log in the following format.
new file: + filename
edit file: * filename
delete file: - filename
We should speak each sentence carefully, accurately, and skillfully!