This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For creating upstream | |
git remote add upstream git@bitbucket.org:exelon/<your_upstream_repo>.git | |
For set origin | |
git remote set-url origin git@bitbucket.org:bldsource/<your_local_repo>.git | |
git pull upstream dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DATE_FORMAT(FROM_UNIXTIME(t.date), '%e %b %Y %h:%i:%s %a') AS 'date_formatted', t.* | |
FROM table_name t | |
ORDER BY t.id DESC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In bitbucket.com/github.com/gitlab | |
// create a pull request from dev to master in bitbucket | |
In Local GIT Bash | |
git pull upstream master | |
git tag // show all tag | |
git fetch --tags // fetch all tag | |
git pull // for update | |
git fetch --all // fetching all from server | |
git tag <new_tag_name> // create a tag |
NewerOlder