Output from git command: git reflog and history | grep “git ” #Git

Output from git command: git reflog and history | grep “git ”

-> did little change to http://visitorsshop.com
-> used two branches branches : Master, Develop
-> used some other feature branches such as (with all branches for this case)

develop
* master
remove-client-id-from-url
remove-justetc-identity

The idea was: create the master branch (will be deployed from), add all files to it, then create the develop branch from master, then create feature branches as required from the develop branch. When the feature work, merge the feature branch with the develop branch while still on the feature branch. then go to the develop branch and merge with the feature branch (seemed did not do much for this case i.e. when merged develop to feature), then merge master to develop, then merge develop to master. Sure, at each merge, resolve the conflicts if required.

the develop branch may or may not be important in your case…Additionally, you might think about release and bug fix branches…was not applicable for this case

The above steps might not be reflected in the actual commands executed as shown below though will be pretty close.

output from history:

history | grep “git “

541 git checkout -b master
542 git branch
543 git status
550 git status
551 git add -A
552 git commit -m “first initi all files and Database SQLs”
553 git status
554 git status
555 git checkout -b remove-justetc-identity
556 git status
557 git add -A
558 git commit -m “mostly justetc identity removed except from site-admin”
559 git add -A
560 git commit -m “removed header links”
561 git status
562 git branch
563 git checkout master
564 git checkout -b develop master
565 git checkout remove-justetc-identity
566 git branch -a
567 git merge develop
568 git branch
569 git merge develop
570 git merge master
571 git checkout develop
572 git merge remove-justetc-identity
573 git checkout master
574 git merge develop
575 git branch
576 git branch
577 git status
578 git stash
579 git checkout remove-justetc-identity
580 git stash pop
581 git stash list
582 git stash clear
583 git status
584 git add -A
585 git commit -m “fixed inconsistency in header links”
586 git status
587 git merge develop
588 git merge
589 git checkout develop
590 git merge remove-justetc-identity
591 git checkout master
592 git merge develop
593 git branch
594 git checkout develop
595 git checkout -b remove-client-id-from-url develop
596 git status
597 git log
598 git branch
599 git add -A
600 git commit -m “remove client id from url also select client id from database and store in session”
601 git status
602 git branch
603 git merge develop
604 git checkout develop
605 git merge remove-client-id-from-url
606 git checkout master
607 git merge develop
608 git branch –all
609 git branch
610 git status
611 git branch
612 git stash
613 git checkout remove-client-id-from-url
614 git stash list
615 git stash pop
616 git add -A
617 git status
618 git commit -m “made login work without clientid in url”
619 git status
620 git status
621 git merge develop
622 git checkout develop
623 git merge remove-client-id-from-url
624 git branch
625 git merge master
626 git checkout master
627 git merge develop
628 git hist
629 git reflog
630 git branch –all
631 git reflog
633 history | grep “git ”

Output from reflog:

928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
:
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
:
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
:
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
~
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
~
~
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
~
~
~
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs
~
~
~
~
~
~
(END)
928af30 HEAD@{0}: merge develop: Fast-forward
f26822e HEAD@{1}: checkout: moving from develop to master
928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward
f26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop
928af30 HEAD@{4}: commit: made login work without clientid in url
f26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url
f26822e HEAD@{6}: merge develop: Fast-forward
ab11e11 HEAD@{7}: checkout: moving from develop to master
f26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward
ab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop
f26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session
ab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url
ab11e11 HEAD@{12}: checkout: moving from master to develop
ab11e11 HEAD@{13}: merge develop: Fast-forward
9fa8c13 HEAD@{14}: checkout: moving from develop to master
ab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward
9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop
ab11e11 HEAD@{17}: commit: fixed inconsistency in header links
9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity
9fa8c13 HEAD@{19}: merge develop: Fast-forward
77e4a68 HEAD@{20}: checkout: moving from develop to master
9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward
77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop
9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity
77e4a68 HEAD@{24}: checkout: moving from master to develop
77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master
9fa8c13 HEAD@{26}: commit: removed header links
abf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin
77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity
77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs From: http://sitestree.com/?p=10427
Categories:Git
Tags:
Post Data:2017-01-28 21:17:38

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Git basic commands and basic branching with Github #Git

[youtube https://www.youtube.com/watch?v=S1GM_ckOzkE] From: http://sitestree.com/?p=10403
Categories:Git
Tags:
Post Data:2017-01-03 22:00:26

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Experimenting with GIT #Git

Was doing some experiments with Git and gitignore

The following worked to achieve what I was trying to achieve…all the images and all the unnecessary files in the var folder were being tracked…

“To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm –cached filename

To untrack every file that is now in your .gitignore:

First commit any outstanding code changes, and then, run this command:

git rm -r –cached .

This removes any changed files from the index(staging area), then just run:

git add .

Commit it:

git commit -m “.gitignore is now working”

To undo git rm –cached filename, use git add filename.

Reference: http://stackoverflow.com/questions/1139762/ignore-files-that-have-already-been-committed-to-a-git-repository From: http://sitestree.com/?p=6050
Categories:Git
Tags:
Post Data:2016-12-27 20:03:29

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview Part 9 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=z5YbmxctVQM

  From: http://sitestree.com/?p=2655
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-23 00:07:06

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview Part 8 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=cCwEnD_UzJU From: http://sitestree.com/?p=2653
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-22 18:05:38

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview Part 7 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=8vN3RaEX90I From: http://sitestree.com/?p=2651
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-22 12:04:06

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview Part 6 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=PtHuKcbvD5o From: http://sitestree.com/?p=2649
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-22 06:00:38

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview: Part 3 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=VHU3ZQCKOgs From: http://sitestree.com/?p=2643
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-21 06:54:31

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

IBM Rational System Architect Overview: Part 2 of 9 #IBM Rational System Architect

https://www.youtube.com/watch?feature=player_embedded&v=9mc2lGjKrcs From: http://sitestree.com/?p=2641
Categories:IBM Rational System Architect
Tags:IBM, Rational System, Architect, Overview
Post Data:2015-10-21 00:52:49

Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

#Engineering: #Canada: #Job/Contract/Project: Any #Engineering: #Computer, #Electrical, #Electronics, #Civil, #Chemical, #Mechanical, #Naval, #Biomedical, and misc Engineering

Date Posted:2021-07-25 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

  1. construction-services-10004
  2. MECHANICAL CONTRACTORS
  3. ELECTRICAL CONTRACTORS
  • electrical-and-electronics-10006
  • SCADA Systems – Electrical Instrumentation
  • Normal Power Electrical Upgrades- CP1 Charles Curtis Memorial Hospital
  • machinery-and-tools-10015
  • Mechanical Street Sweeper
  • architect-and-engineering-services-10048
  • SCADA Systems – Electrical Instrumentation
  • Completion of a Detailed Engineering Design for Anger Avenue Wastewater Treatment Plant Biosolids Facility Upgrades
  • On-Demand Subsurface Utility Engineering (SUE) Retainer Services
  • Professional Engineering Services Pats Creek Stormwater Mitigation Project 2021
  • Woodsdale Road Detailed Design & Engineering
  • educational-and-training-services-10043
  • One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
  • environmental-services-10050
  • SCADA Systems – Electrical Instrumentation
  • lease-and-rental-of-equipment-10045
  • SCADA Systems – Electrical Instrumentation
  • maintenance-repair-modification-rebuilding-and-installation-of-goods-equipment-10054
  • RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  • Electrical Upgrades at Bovaird House
  • natural-resources-services-10051
  • SP22TED252 – Mechanical Site Prep – Disc Trench Kamloops
  • SP22TFF005 Mechanical Site Prep- Grand Forks East
  • quality-control-testing-inspection-and-technical-representative-services-10053
  • RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  • research-and-development-r-d-10036
  • CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  • Software reverse engineering prototypes development (W7701-217332/A)
  • special-studies-and-analysis-not-r-d-10047
  • CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  • Geotechnical Engineering Services-Nunavut FU (5P300-21-0100/A)
  • Professional Engineering Services Pats Creek Stormwater Mitigation Project 2021
  • transportation-travel-and-relocation-services-10044
  • CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  • undefined-10055
  • RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  • Keywords Used:engineer,civil,mechanical,electrical,electronics,mechatronics,naval,biomedical,computer engineer,software engineer,civil engineer,biomedical,electrical engineer,electronics engineer,mechanical engineer,metallurgical,chemical engineer,industrial engineer,communications engineer,quality assurance engineer,Aerospace engineer,aeronautical engineer,Engineering manager,Agricultural Engineer,Automotive Engineer,Environmental Engineer,Geological Engineer,Marine Engineer,Petroleum Engineer,Acoustic Engineer,Acoustic Engineer,Aerospace Engineer,Agricultural Engineer,Applied Engineer,Architectural Engineer,Audio Engineer,Automotive Engineer,Biomedical Engineer,Chemical Engineer,Civil Engineer,Computer Engineer,Electrical Engineer,Environmental Engineer,Industrial Engineer,Marine Engineer,Materials Science Engineer,Mechanical Engineer,Mechatronic Engineer,Mining and Geological Engineer,Molecular Engineer,Nanoengineering,Nuclear Engineer,Petroleum Engineer,Software Engineer,Structural Engineer,Telecommunications Engineer,Thermal Engineer,Transport Engineer,Vehicle Engineer,engineering