• Scratch
    link
    fedilink
    English
    51 year ago

    ‘git checkout -‘ to toggle between branches ‘git checkout -b branch_name’ to create and switch to a new branch.

  • @[email protected]
    link
    fedilink
    31 year ago

    I use git commit --amend --no-edit often.

    Like if I forget to run a formatter before I commit and the build complains just for that.

    git add -u
    git commit --amend --no-edit
    git push -f
    
  • JoYo
    link
    fedilink
    English
    31 year ago

    before every git command i use:

    tar -czvf my_directory.tar.gz -C my_directory .

  • @MuThyme
    link
    1
    edit-2
    11 months ago

    deleted by creator

  • @[email protected]
    link
    fedilink
    01 year ago

    make sure to run

    cd ..
    cp -r my-project my-project.bak
    cd my-project
    

    before running each command :)