1161 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
page 1 / 1
18 results tagged git x
  • thumbnail
    magit/forge: Work with Git forges from the comfort of Magit

    Forge allows you to work with Git forges, such as Github and Gitlab, from the comfort of Magit and the rest of Emacs.

    Forge fetches issues, pull-requests and other data using the forge’s API and stores that in a local database. Additionally it fetches the pull-request references using Git. Forge implements various features that use this data but the database and pull-request refs can also be used by third-party packages.

    September 21, 2020 at 1:03:55 PM UTC - permalink -
    QRCode
    - https://github.com/magit/forge
    emacs git github gitlab isssue magit pull-request
  • Keep a CHANGELOG

    Don’t let your friends dump git logs into CHANGELOGs™

    A change log is a file which contains a curated, chronologically ordered list of notable changes for each version of a project.

    October 16, 2019 at 8:25:31 AM UTC - permalink -
    QRCode
    - https://keepachangelog.com/en/0.3.0/
    changelog changes development git version
  • thumbnail
    GitHub - ihabunek/github-vanity: Write to your GitHub activity chart

    Write to your GitHub activity chart. Contribute to ihabunek/github-vanity development by creating an account on GitHub.

    April 26, 2019 at 7:01:43 PM UTC - permalink -
    QRCode
    - https://github.com/ihabunek/github-vanity
    chart git GitHub hacking history
  • thumbnail
    Technology Partners Supporting GitLab | GitLab

    Every application that supports Git will work with GitLab. Click here to see some of the applications & integrations we would like to highlight.

    April 3, 2019 at 7:50:56 AM UTC - permalink -
    QRCode
    - https://about.gitlab.com/partners/
    client git gitlab
  • thumbnail
    Use magit-ediff to resolve merge conflicts (Example)

    Use magit-ediff or 'e' on an unmerged item to resolve merge conflicts with ediff. Magit will set up an ediff with three buffers A, B and C. A and B are the original (conflicting) files, and C is the conflicted merge.

    November 15, 2018 at 10:17:50 PM UTC - permalink -
    QRCode
    - https://coderwall.com/p/mcrwag/use-magit-ediff-to-resolve-merge-conflicts
    conflict diff ediff emacs git magit merge
  • thumbnail
    branch - git: renaming branches remotely? - Stack Overflow
    $ git branch new-branch-name origin/old-branch-name
    $ git push origin --set-upstream new-branch-name
    $ git push origin :old-branch-name
    April 20, 2018 at 11:02:33 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/a/4754132/954777
    branch git project-managment rename
  • thumbnail
    Best way to use multiple SSH private keys on one client - Stack Overflow
    1. Generate SSH key:

      $ ssh-keygen -t rsa -C <email1@example.com>
    2. Generate another SSH key:

      $ ssh-keygen -t rsa -f ~/.ssh/accountB -C <email2@example.com>

      Now, two public keys (id_rsa.pub, accountB.pub) should be exists in the ~/.ssh/ directory.

      $ ls -l ~/.ssh     # see the files of '~/.ssh/' directory 
    3. Create config file ~/.ssh/config with the following contents:

      $ nano ~/.ssh/config
      
      Host bitbucket.org  
          User git  
          Hostname bitbucket.org
          PreferredAuthentications publickey  
          IdentityFile ~/.ssh/id_rsa  
      
      Host bitbucket-accountB  
          User git  
          Hostname bitbucket.org  
          PreferredAuthentications publickey  
          IdentitiesOnly yes  
          IdentityFile ~/.ssh/accountB  
    4. Clone from default account.

      $ git clone git@bitbucket.org:username/project.git
    5. Clone from accountB account.

      $ git clone git@bitbucket-accountB:username/project.git

    See More Here

    October 9, 2017 at 10:59:57 AM UTC * - permalink -
    QRCode
    - https://stackoverflow.com/questions/2419566/best-way-to-use-multiple-ssh-private-keys-on-one-client
    accounts bitbucket git gitlab luther-blissett multiple-identities private-key rsa ssh ssh-keygen
  • About Git subtree merges - User Documentation

    If you need to manage multiple projects within a single repository, you can use a subtree merge to handle all the references.

    Typically, a subtree merge is used to contain a repository within a repository. The "subrepository" is stored in a folder of the main repository.

    The best way to explain subtree merges is to show by example. We will:

    Make an empty repository called test that represents our project
    Merge another repository into it as a subtree called Spoon-Knife.
    The test project will use that subproject as if it were part of the same repository.
    Fetch updates from Spoon-Knife into our test project.

    October 3, 2017 at 11:05:49 AM UTC - permalink -
    QRCode
    - https://help.github.com/articles/about-git-subtree-merges/
    git merge repository subtree
  • thumbnail
    Git Large File Storage | Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.

    Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.

    May 20, 2017 at 7:28:41 AM UTC - permalink -
    QRCode
    - https://git-lfs.github.com/
    files git
  • Git - git-archive Documentation
     git archive -o f83a9df9.tar.gz HEAD   $(git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT f83a9df9 bd1773dd)
    February 28, 2017 at 4:04:56 PM UTC - permalink -
    QRCode
    - https://git-scm.com/docs/git-archive
    archive deployment diff git
  • GitHub - pidu/git-timemachine: Step through historic versions of git controlled file using everyone's favourite editor
    November 25, 2016 at 1:20:12 PM UTC - permalink -
    QRCode
    - https://github.com/pidu/git-timemachine
    emacs git package revision scm time-machine version
  • How to merge Git conflicts in Emacs ? - Emacs Stack Exchange
    October 28, 2016 at 10:02:05 AM UTC - permalink -
    QRCode
    - http://emacs.stackexchange.com/questions/16469/how-to-merge-git-conflicts-in-emacs
    conflicts emacs git git-merge magit merge smerge
  • Magit! A Git Porcelain inside Emacs

    Magit is an interface to the version control system Git, implemented as an Emacs package. Magit aspires to be a complete Git porcelain. While we cannot (yet) claim that Magit wraps and improves upon each and every Git command, it is complete enough to allow even experienced Git users to perform almost all of their daily version control tasks directly from within Emacs. While many fine Git clients exist, only Magit and Git itself deserve to be called porcelains.

    October 28, 2016 at 9:58:44 AM UTC - permalink -
    QRCode
    - https://magit.vc/
    emacs git magit package vcs
  • Git and Make: not just for code | SCALE 12x

    wo of the most common programming tools are way too useful to be left to the programmers. We'll cover how to use the Git version control system and the Make utility to get more accurate and faster results on a variety of common tasks.

    Edit files in Markdown format, while you collaborate with users who run Microsoft Word--you can have diffs, while they can use their "DOCX" format and "Track Changes" functionality.

    "Win" National Novel Writing Month with the help of Git hooks--a handy way to set up programs to assist you with word count and spelling.

    Do double-entry accounting for a small business, and generate financial statements in HTML.

    Keep your files consistent across multiple in-house and/or cloud servers, even if all servers are accepting a push at the same time.

    And you don't have to keep typing "make" -- we'll cover a simple way to re-run your task when anything changes, and have the result automatically refresh in your browser.

    June 24, 2016 at 9:35:31 PM UTC - permalink -
    QRCode
    - https://www.socallinuxexpo.org/scale12x/presentations/git-and-make-not-just-code
    document-processing git make makefile tasks
  • Git and Make: not just for code
    June 24, 2016 at 9:34:37 PM UTC - permalink -
    QRCode
    - http://zgp.org/static/scale12x/
    document-processing git make makefile task
  • Using git and make for tasks beyond coding [LWN.net]

    Don Marti presented a talk where he describes how he uses make, git, and other tools for work other than software development. His primary example use case was document processing, but he noted the applicability of the tools to other scenarios.

    June 24, 2016 at 9:31:05 PM UTC - permalink -
    QRCode
    - https://lwn.net/Articles/589196/
    document-processing git make makefile task
  • GitLab Documentation - Todos
    March 31, 2016 at 8:13:38 PM UTC - permalink -
    QRCode
    - http://doc.gitlab.com/ce/workflow/todos.html
    git gitlab project-managment todos
  • Local git statistics including GitHub-like contributions calendars.

    $ git-stats --help
    Usage: git-stats [options]

    Options:
    -s, --since <date> Optional start date.
    -u, --until <date> Optional end date.
    -n, --no-ansi Forces the tool not to use ANSI styles.
    -l, --light Enables the light theme.
    -a, --authors Shows a pie chart with the author related
    contributions in the current repository.
    -g, --global-activity Shows global activity calendar in the current
    repository.
    -d, --data <path> Sets a custom data store file.
    -f, --first-day <day> Sets the first day of the week.
    --record <data> Records a new commit. Don't use this unless you
    are a mad scientist. If you are a developer, just
    use this option as part of the module.
    -r, --raw Outputs a dump of the raw JSON data.
    -h, --help Displays this help.
    -v, --version Displays version information.

    Examples:
    git-stats # Default behavior (stats in the last year)
    git-stats -l # Light mode
    git-stats -s '1 January 2012' # All the commits from 1 January 2012 to now
    git-stats -s '1 January 2012' -u '31 December 2012' # All the commits from 2012

    Your commit history is kept in ~/.git-stats by default. You can create ~/.git-stats-config.json to specify different defaults.

    Documentation can be found at https://github.com/IonicaBizau/git-stats

    February 18, 2016 at 2:18:59 PM UTC - permalink -
    QRCode
    - https://github.com/IonicaBizau/git-stats
    git stats
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation