• 0 Posts
  • 85 Comments
Joined 3 years ago
cake
Cake day: June 16th, 2023

help-circle




  • Basic workflow that got me through the learning pains.

    If I just sat down:

    • git checkout develop or whatever ur main branch is
    • git pull origin

    If I’m working on a new branch:

    (If not already on the new branch)

    • git branch -b feature/123-ticket-name

    (After making some changes)

    • git add .
    • git commit
    • git push

    Git will prompt you the first time you git push, just follow the instructions.

    And of course there’s tons more you could learn or dive into. But that should give you a stable foundation to start working from