1.3 Check the situation of the remote warehouse again, you can see that there are already two remote warehouses. Then use the corresponding command to push to the corresponding repository. The disadvantage of this method is that you have to push twice each time.
2.3 View the situation of the remote warehouse. You can see that there are two push addresses on the github remote repository. The advantage of this method is that you only need to push once each time.
Open .git / config to find [remote “github”], add the corresponding url, the effect is as follows. This method is actually the same as the second method.
Methods 2 and 3 are more convenient when pushing. But when pulling, you can only pull code from the first url in method 3. The first method does not have this problem (conflicts may need to be resolved). Therefore, if only the push operation is performed, methods two and three are recommended, and if the pull operation is also performed, method one is recommended.