Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: citrin/c3vimpkg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0
Choose a base ref
...
head repository: citrin/c3vimpkg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Sep 11, 2017

  1. Add script to create release archive.

    I can't use snapshots created by github, because they don't include
    submodules.
    citrin committed Sep 11, 2017
    Copy the full SHA
    6835e81 View commit details

Commits on Jun 14, 2018

  1. Update plugins

    citrin committed Jun 14, 2018
    Copy the full SHA
    662d9d7 View commit details

Commits on Jul 23, 2018

  1. Update plugins

    citrin committed Jul 23, 2018
    Copy the full SHA
    c2fd866 View commit details

Commits on Jun 18, 2020

  1. Update plugins

    citrin committed Jun 18, 2020
    Copy the full SHA
    f0886fc View commit details

Commits on Jun 21, 2020

  1. Update plugins

    citrin committed Jun 21, 2020
    Copy the full SHA
    4f92122 View commit details
Showing with 25 additions and 2 deletions.
  1. +1 −1 opt/vim-commentary
  2. +1 −1 opt/vim-go
  3. +23 −0 release.sh
2 changes: 1 addition & 1 deletion opt/vim-commentary
2 changes: 1 addition & 1 deletion opt/vim-go
Submodule vim-go updated 182 files
23 changes: 23 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh

set -ex

PATH=/bin:/usr/bin:/usr/local/bin

root=$(realpath $(dirname $0))

destdir="$root/c3vimpkg"

if [ -d $destdir ]; then
echo "Error: $destdir already exists, remove it first"
fi

mkdir $destdir

git archive master | tar -C $destdir -xf -

export destdir
git submodule foreach 'git archive master | tar -C $destdir/$path -xf -'

tar --options gzip:compression-level=9 -czf c3vimpkg.tar.gz c3vimpkg
rm -r c3vimpkg