Difference between revisions of "Gitlab"

From HyperSecurity Wiki
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''Add new or update file:'''
+
<pre>
 +
git init
 +
git remote add origin http://gitrepo:3000/maddog/laptop.git
 +
git remote -v
 +
git config user.email "Add Email Address Here"
 +
git add .
 +
git commit -m "Initial backup of configs"
 +
git push -u origin master
 +
</pre>
 +
 
 +
===Add new or update file:===
 
git add makeInit
 
git add makeInit
  
 
+
===Commit a file:===
'''Commit a file:'''
 
 
git commit -m "Comment"
 
git commit -m "Comment"
  
 
+
===Push file to gitlab:===
'''Push file to gitlab''
 
 
git push -u {branch}
 
git push -u {branch}

Latest revision as of 07:46, 16 October 2025

git init
git remote add origin http://gitrepo:3000/maddog/laptop.git
git remote -v
git config user.email "Add Email Address Here"
git add .
git commit -m "Initial backup of configs"
git push -u origin master

Add new or update file:

git add makeInit

Commit a file:

git commit -m "Comment"

Push file to gitlab:

git push -u {branch}