{"id":67568,"date":"2021-07-25T04:10:05","date_gmt":"2021-07-25T08:10:05","guid":{"rendered":"http:\/\/bangla.salearningschool.com\/recent-posts\/output-from-git-command-git-reflog-and-history-grep-git-git\/"},"modified":"2021-07-25T04:10:05","modified_gmt":"2021-07-25T08:10:05","slug":"output-from-git-command-git-reflog-and-history-grep-git-git","status":"publish","type":"post","link":"http:\/\/bangla.sitestree.com\/?p=67568","title":{"rendered":"Output from git command:  git reflog and history | grep &#8220;git &#8221; #Git"},"content":{"rendered":"<p>Output from git command:  git reflog and history | grep &#8220;git &#8221;<\/p>\n<p>-&gt; did little change to http:\/\/visitorsshop.com<br \/>\n-&gt; used two branches branches : Master, Develop<br \/>\n-&gt; used some other feature branches such as (with all branches for this case)<\/p>\n<p> develop<br \/>\n* master<br \/>\n  remove-client-id-from-url<br \/>\n  remove-justetc-identity<\/p>\n<p>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.<\/p>\n<p>the develop branch may or may not be important in your case&#8230;Additionally, you might think about release and bug fix branches&#8230;was not applicable for this case<\/p>\n<p>The above steps might not be reflected in the actual commands executed as shown below though will be pretty close.<\/p>\n<p>output from history:<\/p>\n<p><strong>history | grep &#8220;git &#8220;<\/strong><\/p>\n<p>  541  git checkout -b master<br \/>\n  542  git branch<br \/>\n  543  git status<br \/>\n  550  git status<br \/>\n  551  git add -A<br \/>\n  552  git commit -m &#8220;first initi all files and Database SQLs&#8221;<br \/>\n  553  git status<br \/>\n  554  git status<br \/>\n  555  git checkout -b remove-justetc-identity<br \/>\n  556  git status<br \/>\n  557  git add -A<br \/>\n  558  git commit -m &#8220;mostly justetc identity removed except from site-admin&#8221;<br \/>\n  559  git add -A<br \/>\n  560  git commit -m &#8220;removed header links&#8221;<br \/>\n  561  git status<br \/>\n  562  git branch<br \/>\n  563  git checkout master<br \/>\n  564  git checkout -b develop master<br \/>\n  565  git checkout remove-justetc-identity<br \/>\n  566  git branch -a<br \/>\n  567  git merge develop<br \/>\n  568  git branch<br \/>\n  569  git merge develop<br \/>\n  570  git merge master<br \/>\n  571  git checkout develop<br \/>\n  572  git merge remove-justetc-identity<br \/>\n  573  git checkout master<br \/>\n  574  git merge develop<br \/>\n  575  git branch<br \/>\n  576  git branch<br \/>\n  577  git status<br \/>\n  578  git stash<br \/>\n  579  git checkout remove-justetc-identity<br \/>\n  580  git stash pop<br \/>\n  581  git stash list<br \/>\n  582  git stash clear<br \/>\n  583  git status<br \/>\n  584  git add -A<br \/>\n  585  git commit -m &#8220;fixed inconsistency in header links&#8221;<br \/>\n  586  git status<br \/>\n  587  git merge develop<br \/>\n  588  git merge<br \/>\n  589  git checkout develop<br \/>\n  590  git merge remove-justetc-identity<br \/>\n  591  git checkout master<br \/>\n  592  git merge develop<br \/>\n  593  git branch<br \/>\n  594  git checkout develop<br \/>\n  595  git checkout -b remove-client-id-from-url develop<br \/>\n  596  git status<br \/>\n  597  git log<br \/>\n  598  git branch<br \/>\n  599  git add -A<br \/>\n  600  git commit -m &#8220;remove client id from url also select client id from database and store in session&#8221;<br \/>\n  601  git status<br \/>\n  602  git branch<br \/>\n  603  git merge develop<br \/>\n  604  git checkout develop<br \/>\n  605  git merge remove-client-id-from-url<br \/>\n  606  git checkout master<br \/>\n  607  git merge develop<br \/>\n  608  git branch &#8211;all<br \/>\n  609  git branch<br \/>\n  610  git status<br \/>\n  611  git branch<br \/>\n  612  git stash<br \/>\n  613  git checkout remove-client-id-from-url<br \/>\n  614  git stash list<br \/>\n  615  git stash pop<br \/>\n  616  git add -A<br \/>\n  617  git status<br \/>\n  618  git commit -m &#8220;made login work without clientid in url&#8221;<br \/>\n  619  git status<br \/>\n  620  git status<br \/>\n  621  git merge develop<br \/>\n  622  git checkout develop<br \/>\n  623  git merge remove-client-id-from-url<br \/>\n  624  git branch<br \/>\n  625  git merge master<br \/>\n  626  git checkout master<br \/>\n  627  git merge develop<br \/>\n  628  git hist<br \/>\n  629  git reflog<br \/>\n  630  git branch &#8211;all<br \/>\n  631  git reflog<br \/>\n  633  history | grep &#8220;git &#8221;<\/p>\n<p><strong>Output from reflog:<\/strong><\/p>\n<p>928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n:<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n:<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n:<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n~<br \/>\n(END)<br \/>\n928af30 HEAD@{0}: merge develop: Fast-forward<br \/>\nf26822e HEAD@{1}: checkout: moving from develop to master<br \/>\n928af30 HEAD@{2}: merge remove-client-id-from-url: Fast-forward<br \/>\nf26822e HEAD@{3}: checkout: moving from remove-client-id-from-url to develop<br \/>\n928af30 HEAD@{4}: commit: made login work without clientid in url<br \/>\nf26822e HEAD@{5}: checkout: moving from master to remove-client-id-from-url<br \/>\nf26822e HEAD@{6}: merge develop: Fast-forward<br \/>\nab11e11 HEAD@{7}: checkout: moving from develop to master<br \/>\nf26822e HEAD@{8}: merge remove-client-id-from-url: Fast-forward<br \/>\nab11e11 HEAD@{9}: checkout: moving from remove-client-id-from-url to develop<br \/>\nf26822e HEAD@{10}: commit: remove client id from url also select client id from database and store in session<br \/>\nab11e11 HEAD@{11}: checkout: moving from develop to remove-client-id-from-url<br \/>\nab11e11 HEAD@{12}: checkout: moving from master to develop<br \/>\nab11e11 HEAD@{13}: merge develop: Fast-forward<br \/>\n9fa8c13 HEAD@{14}: checkout: moving from develop to master<br \/>\nab11e11 HEAD@{15}: merge remove-justetc-identity: Fast-forward<br \/>\n9fa8c13 HEAD@{16}: checkout: moving from remove-justetc-identity to develop<br \/>\nab11e11 HEAD@{17}: commit: fixed inconsistency in header links<br \/>\n9fa8c13 HEAD@{18}: checkout: moving from master to remove-justetc-identity<br \/>\n9fa8c13 HEAD@{19}: merge develop: Fast-forward<br \/>\n77e4a68 HEAD@{20}: checkout: moving from develop to master<br \/>\n9fa8c13 HEAD@{21}: merge remove-justetc-identity: Fast-forward<br \/>\n77e4a68 HEAD@{22}: checkout: moving from remove-justetc-identity to develop<br \/>\n9fa8c13 HEAD@{23}: checkout: moving from develop to remove-justetc-identity<br \/>\n77e4a68 HEAD@{24}: checkout: moving from master to develop<br \/>\n77e4a68 HEAD@{25}: checkout: moving from remove-justetc-identity to master<br \/>\n9fa8c13 HEAD@{26}: commit: removed header links<br \/>\nabf2b3d HEAD@{27}: commit: mostly justetc identity removed except from site-admin<br \/>\n77e4a68 HEAD@{28}: checkout: moving from master to remove-justetc-identity<br \/>\n77e4a68 HEAD@{29}: commit (initial): first initi all files and Database SQLs From: http:\/\/sitestree.com\/?p=10427<br \/> Categories:Git<br \/>Tags:<br \/> Post Data:2017-01-28 21:17:38<\/p>\n<p>\t\tShop Online: <a href='https:\/\/www.ShopForSoul.com\/' target='new' rel=\"noopener\">https:\/\/www.ShopForSoul.com\/<\/a><br \/>\n\t\t(Big Data, Cloud, Security, Machine Learning): Courses: <a href='http:\/\/Training.SitesTree.com' target='new' rel=\"noopener\"> http:\/\/Training.SitesTree.com<\/a><br \/>\n\t\tIn Bengali: <a href='http:\/\/Bangla.SaLearningSchool.com' target='new' rel=\"noopener\">http:\/\/Bangla.SaLearningSchool.com<\/a><br \/>\n\t\t<a href='http:\/\/SitesTree.com' target='new' rel=\"noopener\">http:\/\/SitesTree.com<\/a><br \/>\n\t\t8112223 Canada Inc.\/JustEtc: <a href='http:\/\/JustEtc.net' target='new' rel=\"noopener\">http:\/\/JustEtc.net (Software\/Web\/Mobile\/Big-Data\/Machine Learning) <\/a><br \/>\n\t\tShop Online: <a href='https:\/\/www.ShopForSoul.com'> https:\/\/www.ShopForSoul.com\/<\/a><br \/>\n\t\tMedium: <a href='https:\/\/medium.com\/@SayedAhmedCanada' target='new' rel=\"noopener\"> https:\/\/medium.com\/@SayedAhmedCanada <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Output from git command: git reflog and history | grep &#8220;git &#8221; -&gt; did little change to http:\/\/visitorsshop.com -&gt; used two branches branches : Master, Develop -&gt; 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 &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"http:\/\/bangla.sitestree.com\/?p=67568\">Continue reading<\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1917],"tags":[],"class_list":["post-67568","post","type-post","status-publish","format-standard","hentry","category-fromsitestree-com","item-wrap"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":21640,"url":"http:\/\/bangla.sitestree.com\/?p=21640","url_meta":{"origin":67568,"position":0},"title":"Adopting GIT &#8211; One Repo for One Project #Web Development #By Sayed Ahmed","author":"Author-Check- Article-or-Video","date":"March 3, 2021","format":false,"excerpt":"Just trying to plan on how to adopt the model of Git based development for all of different Justetc projects. Still, testing, though found this resource to be useful : http:\/\/nvie.com\/posts\/a-successful-git-branching-model\/ Rather than creating a central repository with all projects, so far, planning to create separate repository for each project\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":78091,"url":"http:\/\/bangla.sitestree.com\/?p=78091","url_meta":{"origin":67568,"position":1},"title":"Upgrading Moodle to Newer Versions","author":"Sayed","date":"April 30, 2025","format":false,"excerpt":"[root@vps training]# history | tail -201031 git pull1032 php admin\/cli\/upgrade.php1033 php admin\/cli\/maintenance.php --disable1034 git branch -a1035 git branch --track MOODLE_500_STABLE origin\/MOODLE_500_STABLE1036 git checkout MOODLE_500_STABLE1037 git commit1038 git checkout MOODLE_500_STABLE1039 php admin\/cli\/maintenance.php --enable1040 remotes\/origin\/MOODLE_400_STABLE1041 git commit MOODLE_400_STABLE1042 git branch --track MOODLE_400_STABLE origin\/MOODLE_400_STABLE1043 history -101044 history | tail -101045 git checkout MOODLE_400_STABLE1046\u2026","rel":"","context":"In &quot;Root&quot;","block_context":{"text":"Root","link":"http:\/\/bangla.sitestree.com\/?cat=1"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":20622,"url":"http:\/\/bangla.sitestree.com\/?p=20622","url_meta":{"origin":67568,"position":2},"title":"Git Tutorials and Resources","author":"Author-Check- Article-or-Video","date":"February 24, 2021","format":false,"excerpt":"Adopting GIT : https:\/\/www.atlassian.com\/git\/resources Git Workflows (Centralized, Feature Branch, Gitflow, Forking, Pull Requests) : https:\/\/www.atlassian.com\/git\/workflows Git Basic Tutorials: https:\/\/www.atlassian.com\/git\/tutorial Git Overview: https:\/\/www.atlassian.com\/git\/ \u00a0 \u00a0 From: http:\/\/sitestree.com\/?p=1049 Categories:Web Development, Root, By Sayed Ahmed, Misc. ReadingTags: Post Data:2014-06-19 20:58:39","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":16622,"url":"http:\/\/bangla.sitestree.com\/?p=16622","url_meta":{"origin":67568,"position":3},"title":"Misc: SVN and Git","author":"Sayed","date":"January 8, 2020","format":false,"excerpt":"SVN Vs Git: Which One Is Best For Your Needs? https:\/\/hackbrightacademy.com\/blog\/svn-vs-git\/ For me: it is Git (Sure, Github) *** SVN: Basic Work Cycle: Simple Commands http:\/\/svnbook.red-bean.com\/en\/1.0\/ch03s05.html SVN (Subversion): A simple workflow \" update to merge the latest changes from the server into your working copy; Perform whatever modifications you need\u2026","rel":"","context":"In &quot;AI ML DS RL DL NN NLP Data Mining Optimization&quot;","block_context":{"text":"AI ML DS RL DL NN NLP Data Mining Optimization","link":"http:\/\/bangla.sitestree.com\/?cat=1910"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":16440,"url":"http:\/\/bangla.sitestree.com\/?p=16440","url_meta":{"origin":67568,"position":4},"title":"Git LFS: Large File System","author":"Sayed","date":"November 30, 2019","format":false,"excerpt":"To use Homebrew, run brew install git-lfs To use MacPorts, run port install git-lfs git lfs track \"*.tar.gz\" git add path\/to\/file.tar.gz git commit -m \"add file.psd\" git push origin master Reference: https:\/\/help.github.com\/en\/github\/managing-large-files\/configuring-git-large-file-storage Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada)\u2026","rel":"","context":"In &quot;AI ML DS RL DL NN NLP Data Mining Optimization&quot;","block_context":{"text":"AI ML DS RL DL NN NLP Data Mining Optimization","link":"http:\/\/bangla.sitestree.com\/?cat=1910"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24444,"url":"http:\/\/bangla.sitestree.com\/?p=24444","url_meta":{"origin":67568,"position":5},"title":"What is Brew? Brew Commands? MacOs #Root","author":"Author-Check- Article-or-Video","date":"April 9, 2021","format":false,"excerpt":"A package manager for Mac. Brew Installs some useful packages that Mac Does not install own it's own. \u00a0 A list of some Brew packages: https:\/\/github.com\/Homebrew\/homebrew-core\/tree\/master\/Formula \u00a0 These packages are Ruby Gems. Gems are ruby packages. \u00a0 Brew Commands brew install git brew upgrade git brew unlink git brew link\u2026","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/67568","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=67568"}],"version-history":[{"count":0,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/67568\/revisions"}],"wp:attachment":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=67568"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=67568"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=67568"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}