1362 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
◄Older
page 1 / 2
29 results tagged git x
  • thumbnail
    How to Create a Personal Gitignore | by Peter Graham | Medium
    January 21, 2022 at 6:46:05 PM UTC - permalink -
    QRCode
    - https://medium.com/@peter_graham/how-to-create-a-local-gitignore-1b19f083492b
    git ignore
  • Things I think everyone should know about Git

    #git #cheat-cheet #reflog

    December 26, 2021 at 10:27:35 AM UTC - permalink -
    QRCode
    - https://perl.plover.com/classes/git-tips/
    cheat-cheet git reflog
  • thumbnail
    How To Checkout The Previous Branch In Git
    November 23, 2021 at 11:09:53 AM UTC - permalink -
    QRCode
    - https://marcgg.com/blog/2015/10/18/git-checkout-minus/
    branch checkout git
  • Git - Rebasing
    November 22, 2021 at 6:30:15 PM UTC - permalink -
    QRCode
    - https://git-scm.com/book/en/v2/Git-Branching-Rebasing
    git rebase
  • Git - Plumbing and Porcelain
    November 22, 2021 at 6:29:06 PM UTC - permalink -
    QRCode
    - https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain
    git internal
  • Git from the Bottom Up

    #git

    November 22, 2021 at 6:26:56 PM UTC * - permalink -
    QRCode
    - https://jwiegley.github.io/git-from-the-bottom-up/
    git
  • thumbnail
    Easy Git Workflow
    November 4, 2021 at 11:47:44 AM UTC * - permalink -
    QRCode
    - https://ovid.github.io/articles/easy-git-workflow.html#merging-into-master
    aaw collaboration git methodology rebase simple workflow
  • thumbnail
    Git fixup explained | Bartosz Mikulski

    Quite often, we must modify a file that has already been committed to the local repository. In this case, we often end up with commit messages like: “Fixed typo.”, “Added missing parameter.”, “Removed redundant import.”

    At some point, we realize that such commit clutter the code history, and it is better to avoid them. Fortunately, there are at least two options to get rid of them.

    October 27, 2021 at 9:44:56 AM UTC * - permalink -
    QRCode
    - https://www.mikulskibartosz.name/git-fixup-explained/
    fixup git rebase
  • useful git aliases | git-knowledge-base
    October 15, 2021 at 8:06:52 AM UTC * - permalink -
    QRCode
    - https://idiv-biodiversity.github.io/git-knowledge-base/aliases.html
    alias cheat-sheet git
  • thumbnail
    git lol · GitHub
    October 15, 2021 at 8:06:08 AM UTC * - permalink -
    QRCode
    - https://gist.github.com/outro56/31e588e5622dcf7931de0aee49baa7b2
    alias git log pretty-print
  • GIT PURR! Git Commands Explained with Cats! – GirlieMac! Blog
    September 7, 2021 at 10:30:40 AM UTC - permalink -
    QRCode
    - https://girliemac.com/blog/2017/12/26/git-purr/
    cat education git
  • 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
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation