<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>git on Ohidur's Blog</title><link>https://blog.ohidur.com/tags/git/</link><description>Recent content in git on Ohidur's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>me@ohidur.com (Ohidur Rahman Bappy)</managingEditor><webMaster>me@ohidur.com (Ohidur Rahman Bappy)</webMaster><copyright>©{year} Ohidur.com</copyright><lastBuildDate>Sat, 26 Dec 2020 00:00:00 +0000</lastBuildDate><atom:link href="https://blog.ohidur.com/tags/git/index.xml" rel="self" type="application/rss+xml"/><item><title>Basic usage of git</title><link>https://blog.ohidur.com/posts/github/git-basics/</link><pubDate>Sat, 26 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 19:30:36 +0600</atom:modified><guid>https://blog.ohidur.com/posts/github/git-basics/</guid><description>Install Git sudo apt update sudo apt install git git --version Initialize a new repository mkdir my-git-repo cd my-git-repo git init Configure Git git config --global user.name &amp;#34;Name&amp;#34; git config --global user.email &amp;#34;user@example.com&amp;#34; Git Operations echo &amp;#34;This is my first repository.&amp;#34; &amp;gt; readme git add README git commit -m &amp;#34;This is my first commit!&amp;#34; echo &amp;#34;A repository is a location where all the files of a particular project are stored.&amp;#34; &amp;gt; readme git diff README git add README git status git commit -m &amp;#34;This is my second commit.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>git</category></item><item><title>Make a cron job with github action</title><link>https://blog.ohidur.com/posts/github/make-a-cron-job/</link><pubDate>Tue, 15 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/github/make-a-cron-job/</guid><description>Make a cron job using Github action
name: 15-minute-cron on: schedule: - cron: &amp;#39;*/15 * * * *&amp;#39; jobs: cron: runs-on: ubuntu-latest steps: - name: Call our API route run: | curl --request POST \ --url &amp;#39;https://yoursite.com/api/cron&amp;#39; \ --header &amp;#39;Authorization: Bearer ${{ secrets.YOUR_API_KEY }}&amp;#39;</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>git</category></item></channel></rss>