Skip to content

Instantly share code, notes, and snippets.

View JosefLitos's full-sized avatar

Josef Litoš JosefLitos

  • Czech Republic
  • 15:08 (UTC +02:00)
View GitHub Profile
@sapphyrus
sapphyrus / LICENSE
Last active August 22, 2023 08:44
Fast table deep compare algorithm (Lua)
MIT License
Copyright (c) 2022 sapphyrus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@gitaarik
gitaarik / git_submodules.md
Last active May 4, 2024 11:10
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.