Plugin Directory

Changeset 1399279


Ignore:
Timestamp:
04/19/2016 11:42:36 AM (10 years ago)
Author:
robmcvey
Message:

Add assets branch info

File:
1 edited

Legend:

Unmodified
Added
Removed
  • copify/trunk/README.md

    r1399271 r1399279  
    4040$ git svn tag 1.1.1
    4141```
     42
     43### Assets
     44
     45Set up a URL and svn branch for the assets
     46
     47```bash
     48$ git config --add svn-remote.assets.url http://plugins.svn.wordpress.org/copify/assets
     49$ git config --add svn-remote.assets.fetch :refs/remotes/assets
     50```
     51
     52Existing assets can then be fetched in to a new branch;
     53
     54```bash
     55$ git svn fetch -r HEAD assets
     56$ git checkout -b assets
     57```
     58
     59Make changes (edit icons or banners) then commit while on `assets` branch;
     60
     61```bash
     62$ git commit -am "Edited icon"
     63$ git svn dcommit
     64```
Note: See TracChangeset for help on using the changeset viewer.