Skip to content

albatrossdigital/flight-drops-7

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flight-drops-7

How to update the latest from the Pantheon upstream

Setup

git remote add upstream https://github.com/pantheon-systems/drops-7.git

Merging in changes

git merge upstream/master

How to Update Flight based repos

First update

git pull origin master

NOTE: might need to call git pull github master and git pull pantheon master seperately.

Checkout new branch

git checkout -b updating-flight

Pull down latest flight

git pull -s recursive -X theirs [email protected]:albatrossdigital/flight-drops-7.git

Resolve any merge conflicts

git mergetool

NOTE: You may be prompted to choose between {local} and {remote} files just choose "m - modified" if it corresponds to the remote files you may also be forced to click through a bunch of files on the command line. Because you've chosen "theirs" no action will actually be necessary.

Once merged, you can remote any "orig", ect files.

shows them

git status -su | grep -e"\.orig$" | cut -f2 -d" "

Deletes them

git status -su | grep -e"\.orig$" | cut -f2 -d" " | xargs rm -r

Commit changes

git commit -m "Updating to flight 7.xx"

Checkout master, merge, push

git checkout master
git merge updating-flight
git push origin master

About

Flight based on Pantheon Pressflow 7 for DROPs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 82.6%
  • JavaScript 7.2%
  • CSS 7.0%
  • HTML 2.9%
  • Makefile 0.2%
  • Shell 0.1%