gitlab basic operation commands

  1. Create a file locally, for example: dakadaka
  2. Enter cd C: \ Users \ admin \ PycharmProjects \ dakadaka on the cmd command line to enter the path of the folder
  3. cmd command line input: git clone -b develop git address, clone develop branch,
  4. Enter cd auto-test on the cmd command line to enter the directory of the clone branch
  5. Enter git status on the cmd command line to view the local change status
  6. cmd command line input git commit -a -m "ddddd" to commit the changed file
  7. cmd command line input git push to push the submitted file to the git repository
  8. Enter git pull on the cmd command line to synchronize the files changed online to the local

 

Guess you like

Origin www.cnblogs.com/keqing1108/p/12751521.html