Skip to content

abdullah-dev5/MERN_01

Repository files navigation

MERN_01

Git Processes

Change : we add , delete , modify the code.

Stage : we put it into a box this process is called Stage.

Commit: in coomit we pack the box.

Push : we upload or save on the remote server.

Git Commands

git add --> adding new file

git delete --> deleting the file or code.

git clone --> creating local clone of repo.

git log --> list or view the git history.

git init --> initiallizing repo.

Stash ,Commit And Push.

  1. git status.
  2. git add . ( add All changes )
  3. git add filename1 filename2 filename3 (add or Stash specific files)
  4. git commit -m "Any Message"
  5. git push

Create New Branch and Push.

  1. git checkout -b new-feature
  2. git status
  3. git add
  4. git commit
  5. git push --set-upstream origin new-feature

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published