Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.05 KB

MANAGER.adoc

File metadata and controls

41 lines (26 loc) · 1.05 KB

Manager

Congrats on making it to the project manager position. Few things you have to know

  • This uses the feature branch workflow

  • More info here

  • You need to manage changes via dev branch and merge PRs

  • Once you’ve merged enough PR’s to dev, you should be ready to get a new release going. First, create a PR from dev to master

pr

then, merge the pull request:

merge

Next, you need to push to the server: * Use git ftp

Download git ftp to your machine Add the credentials:

git config git-ftp.url "ftp://cimb.com.mx/public_html"
git config git-ftp.user "FTP_USERNAME"
git config git-ftp.password "FTP_PASS"

Sync with server

git ftp catchup

Once you’ve finished merging all changes from dev to master, pull and checkout master and do

git ftp push

This will upload the files in an orderly fashion.