Skip to main content

Command Palette

Search for a command to run...

Git Commands

Published
1 min readView as Markdown
M

Hi, I am Full Stack Developer. I can build web application, android application, desktop application. My core programming language is JavaScript.

  • New Project git initialization

      git init
    
  • File Changing to update git stage

      git add .
    
  • Git Commit

      git commit -m "Frist Commit"
    
  • Git Push

      git push -u origin main
    

    or

      git push
    
  • Create a new Branch and Change another branch

      git checkout -b "Staging"
    
      git push -u origin Staging
    

    or

      git push
    
  • After git clone and new project / add git url link

      git remote add origin url
    
  • Git URL check

      git remote -v
    
13 views

More from this blog

promahbubul

63 posts

I'm React Native and Full Stack Web Deveioper. My core programming language is JavaScript.