Computer Science, asked by Naazfresh1295, 18 days ago

When we try to push the changes into github.com using git, few git commands need to be executed. Identify the right order of execution of the following git commands. Select one: a. git push ; git add . ; git commit -m "Commenting" b. git commit -m "Commenting" ; git add . ; git push c. git add . ; git commit -m "Commenting" ; git push d. git commit -m "Commenting" ; git push ; git add .

Answers

Answered by gsanjaykumar690
27

Answer:

Create a new repository on GitHub.com. ...

Open TerminalTerminalGit Bash.

Change the current working directory to your local project.

Initialize the local directory as a Git repository. ...

Add the files in your new local repository. ...

Commit the files that you've staged in your local repository.

Answered by ravilaccs
0

Answer:

The list of commands is given below and describe.

Explanation:

Steps involved in the git commands

  • Create a new repository on GitHub.com.
  • Open Terminal Terminal Git Bash.
  • Change the current working directory to your local project.
  • Initialize the local directory as a Git repository.
  • Add the files in your new local repository.
  • Commit the files that you've staged in your local repository.
Similar questions