Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the GIT command to skip staging and directly commit the changes directly ?
Home
Git
What is the GIT command to skip staging and directly commit the changes directly ?
+1
vote
asked
Jul 25, 2019
in
Git
by
SakshiSharma
What is the GIT command to skip staging and directly commit the changes directly ?
Select the correct Answer from below list
(1)git skip stage
(2)git add changes
(3)git commit -a -m “message”
(4)git commit
#developer-git
#git
#git-commands
#git-checkout
#git-reset
#git-branch
#what-is-git
#git-pull
git-diff
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 25, 2019
by
Robindeniel
git commit -a -m “message”
...