Skip to content
Snippets Groups Projects
Commit 93c1eba8 authored by Bourdel Laurent's avatar Bourdel Laurent
Browse files

4st README updated

parent 238daf78
No related branches found
No related tags found
No related merge requests found
...@@ -58,14 +58,21 @@ Copy text and paste it to GitLAB INSA (Profile/Settings/SSH keys) ...@@ -58,14 +58,21 @@ Copy text and paste it to GitLAB INSA (Profile/Settings/SSH keys)
Zip .ssh folder and send by mail yours keys for future use Zip .ssh folder and send by mail yours keys for future use
6/ Config origin-teacher & ryour origin repo in terminal window 6/ Config origin-teacher & ryour origin repo in terminal window
git remote rename origin origin-teacher git remote rename origin origin-teacher
git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/EmbeddedLinux_Group/4CDTI-P2020-<YourName>-LabUdooNeo git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/EmbeddedLinux_Group/4CDTI-P2020-<YourName>-LabUdooNeo
git remote -v git remote -v
7/ Push your local directory to your personal repo in terminal window 7/ Push your local directory to your personal repo in terminal window
git status git status
git push -u origin --all git push -u origin --all
git push -u origin --tags git push -u origin --tags
git status git status
9/ Check if your local repo is pushed on Gitlab repo on web browser 9/ Check if your local repo is pushed on Gitlab repo on web browser
...@@ -82,6 +89,7 @@ git status ...@@ -82,6 +89,7 @@ git status
git commit -a -m "message to explain commit content" git commit -a -m "message to explain commit content"
or git commit -a or git commit -a
(vim command : 'i' to insert, 'ESC' to leave edit mode, ':wq' to save commit message) (vim command : 'i' to insert, 'ESC' to leave edit mode, ':wq' to save commit message)
12/ Push your modification on GitLab server in terminal window 12/ Push your modification on GitLab server in terminal window
...@@ -89,7 +97,9 @@ or git commit -a ...@@ -89,7 +97,9 @@ or git commit -a
git push origin master git push origin master
git log git log
git log -p git log -p
git log --stat git log --stat
13/ Check on GitLab server "new activity" on web browser 13/ Check on GitLab server "new activity" on web browser
...@@ -104,50 +114,32 @@ update (merge) modif by : git pull origin-teacher master ...@@ -104,50 +114,32 @@ update (merge) modif by : git pull origin-teacher master
!!! Well Done !!! !!! Well Done !!!
// Initial README
Command line instructions Command line instructions
Git global setup Git global setup
git config --global user.name "Bourdel Laurent" git config --global user.name "Bourdel Laurent"
git config --global user.email "laurent.bourdel@insa-rennes.fr" git config --global user.email "laurent.bourdel@insa-rennes.fr"
Create a new repository Create a new repository
git clone ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git git clone ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git
cd EmbeddedLinux_UDOO-NEO cd EmbeddedLinux_UDOO-NEO
touch README.md touch README.md
git add README.md git add README.md
git commit -m "add README" git commit -m "add README"
git push -u origin master git push -u origin master
Existing folder Existing folder
cd existing_folder cd existing_folder
git init git init
git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git
git add . git add .
git commit -m "Initial commit" git commit -m "Initial commit"
git push -u origin master git push -u origin master
Existing Git repository Existing Git repository
cd existing_repo cd existing_repo
git remote rename origin old-origin git remote rename origin old-origin
git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git git remote add origin ssh://git@gitlab.insa-rennes.fr:16022/Laurent.Bourdel/EmbeddedLinux_UDOO-NEO.git
git push -u origin --all git push -u origin --all
git push -u origin --tags git push -u origin --tags
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment