Tuesday 8 August 2017

[Git] work with branch (a new empty branch)

  • Create a new and empty branch

$ git checkout --orphan "rye/testmodel"
  • Delete all files to make it empty

$ git rm -rf .
  • Then add and commit files into the branch
  • Finally, push it into remote repository

To push the current branch and set the remote as upstream, use



$ git push --set-upstream origin rye/testmodel

[Formal Verification] Hacker-Proof Code Confirmed

A very nice article about application of formal verification. A bit more optimistic about the future of formal specification and verification. Find the article here.


Wednesday 26 April 2017

[git] work with tags

1. Create

  • lightweight tag
    $ git tag v0.1
    
  • annotated tag
$ git tag -a v0.1 -m "my first version"
  • tag to a specific commit
    $ git tag -a v0.1 4ba28bf
    

2. Query

  • list all tags
    $ git tag
    ether_sysml.v0.4
    ether_sysml_broadcast_unicast_ether.v0.1
    fcu_sysml.v1.0
    fcu_sysml.v1.1
    uav_swarm_sysml.v1.0
    uav_swarm_sysml.v1.0.3
    
  • list all tags with annotations
$ git tag -n99
or
$ git tag -n -l
  • search with patterns

$ git tag -l "ether*"

ether_sysml.v0.4 ether_sysml_broadcast_unicast_ether.v0.1
  • show details of a tag
$ git show ether_sysml.v0.4
tag ether_sysml.v0.4
Tagger: Kangfeng Ye <kangfeng.ye@york.ac.uk>
Date:   Tue Apr 11 20:29:32 2017 +0100

the first version to have Ether with two Ends and create a test project successfully

commit 4ba28bf7e23e091e4d3768814e23204075f66b4c
...
  • sort by creation date
$ git for-each-ref --format '%(refname) %09 %(taggerdate) %(subject) %(taggeremail)' refs/tags  --sort=taggerdate
refs/tags/fcu_sysml.v1.0         Wed Mar 15 14:31:32 2017 +0000 V1.0 of FCU test model <kangfeng.ye@york.ac.uk>
refs/tags/fcu_sysml.v1.1          Thu Mar 16 12:55:34 2017 +0000 Update SysML by changing float to double  <kangfeng.ye@york.ac.uk>
refs/tags/uav_swarm_sysml.v1.0   Thu Mar 16 16:07:36 2017 +0000 SysML test model for UAV Swarm <kangfeng.ye@york.ac.uk>
refs/tags/uav_swarm_sysml.v1.0.3          Mon Mar 20 18:11:20 2017 +0000 Correct constant from 2.2 to 1.2  <kangfeng.ye@york.ac.uk>
refs/tags/ether_sysml_broadcast_unicast_ether.v0.1        Tue Apr 4 18:52:35 2017 +0100 This is a tag for the temporary version  to us <kangfeng.ye@york.ac.uk>
refs/tags/ether_sysml.v0.4        Tue Apr 11 20:29:32 2017 +0100 the first version to   <kangfeng.ye@york.ac.uk>

3. Push tags to remote repositories

  • a specific tag
$ git push origin v0.1
  • all tags
$ git push origin --tags

4. Checkout tags

  • checkout a tag into a new local branch

git checkout -b bv0.1 v0.1
Reference:

Wednesday 19 April 2017

[Git] difference between two branches

 Show changes and log between two branches
  • $ git diff master..branch
  • $ git log master..branch
  • $ git shortlog master..branch
Show which files are changed between two branches
  • $ git diff --name-status master..branch
Show changes to a specific file between two branches
  • $ git diff branch master -- path/to/thefile
  • or $ git diff master..branch -- path/to/thefile

References:
  • this link (http://linux.yyz.us/git-howto.html#diff_branch)
  • this question (http://stackoverflow.com/questions/822811/showing-which-files-have-changed-between-two-revisions)

[Git] how to merge a file from one branch into current branch

Scenario:
  • A branch (newbranch) is created and some update on this branch
  • Later you want to merge the changes made to a specific file (thefile) on  newbranch to another branch (oldbranch)
Steps:
  1. If current working branch is oldbranch, go to Step 4. Otherwise, go to Step 2
  2. Clone master branch
  3. Fetch all branches and create local branches to track all remote branches (following this post
  4. Switch to oldbranch, $ git checkout oldbranch
  5. Merge by $git checkout --patch newbranch relative_path/to/thefile
    • Apply this hunk to index and worktree [y,n,q,a,d,/,j,J,g,e,?]?
    • The meaning of each is given with the help of $ git add --help
patch
           This lets you choose one path out of a status like selection. After choosing the path, it presents the diff between the index and the working tree file and asks you if you want to stage the change of each hunk. You can select one of the following options and type return:

               y - stage this hunk
               n - do not stage this hunk
               q - quit; do not stage this hunk or any of the remaining ones
               a - stage this hunk and all later hunks in the file
               d - do not stage this hunk or any of the later hunks in the file
               g - select a hunk to go to
               / - search for a hunk matching the given regex
               j - leave this hunk undecided, see next undecided hunk
               J - leave this hunk undecided, see next hunk
               k - leave this hunk undecided, see previous undecided hunk
               K - leave this hunk undecided, see previous hunk
               s - split the current hunk into smaller hunks
               e - manually edit the current hunk
               ? - print help

[Git] fetch all remote branches and make them tracked by local branches


$ git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done 
$ git fetch --all
$ git pull --all

Reference from this How to fetch all git branches

Friday 24 February 2017

[Haskell-Cabal] pass specific options to build tools

Cabal provides options on command line to pass options to specific tools. For example, if we want to pass debug option to happy.

$ cabal build --happy-option=-d
 References:
$ cabal build --help

    --with-PROG=PATH    give the path to PROG
    --PROG-option=OPT   give an extra option to PROG (no need to quote options
                        containing spaces)
    --PROG-options=OPTS give extra options to PROG

The flags --with-PROG and --PROG-option(s) can be used with the following programs:
  alex ar c2hs cpphs gcc ghc ghc-pkg ghcjs ghcjs-pkg greencard haddock happy
  haskell-suite haskell-suite-pkg hmake hpc hsc2hs hscolour jhc ld lhc lhc-pkg
  pkg-config strip tar uhc

[Haskell] add search directories option to ghci

Debug with this
$ ghci src/Test/ParseCircus.hs 

will lead to a problem such as
src/Test/ParseCircus.hs:14:8:
    Could not find module ‘Language.ISOZ.Parser.SynTransformerTwo’
    Use -v to see a list of the files searched for.
Locations searched:
  Language/ISOZ/Parser/SynTransformerTwo.hs
  Language/ISOZ/Parser/SynTransformerTwo.lhs
  Language/ISOZ/Parser/SynTransformerTwo.hsig
  Language/ISOZ/Parser/SynTransformerTwo.lhsig
 To fix it, add more folders to search directories by -i option

$ghci src/Test/ParseCircus.hs -isrc:dist/build
See reference